home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / util / cli / gengui21.lha / Gengui2.1 / Examples / xarc.gui < prev   
Text File  |  1995-10-12  |  3KB  |  163 lines

  1. #c_source
  2.  
  3. #define GUI_CATALOG "xarc.catalog"
  4.  
  5. #end_source
  6.  
  7. Projectname TestPro
  8.  
  9. vbox
  10.    xspace 3
  11.    yspace 3
  12.  
  13.    hbox
  14.       vbox
  15.          string
  16.             TopStdSpace 1
  17.             text "Path:"
  18.             textid STR_PATH=1
  19.             FLAGS PLACETEXT_ABOVE
  20.             id    LPATH=1
  21.             tags GTST_MaxChars,256
  22.          end
  23.          string
  24.             tags GTST_MaxChars,256
  25.             id    LARC=2
  26.          end
  27.  
  28.          hbox
  29.             button
  30.                MinVChar 2
  31.                MinVPix  32
  32.                vrel  1
  33.                id    L_FILE=3
  34.             end
  35.  
  36.             scroller
  37.                tags PGA_Freedom,LORIENT_VERT
  38.                tags GTSC_Arrows,16
  39.                id   LVSCROLLER=4
  40.                hchar 1
  41.                hpix  8
  42.             end
  43.          end
  44.          scroller
  45.             tags PGA_Freedom,LORIENT_HORIZ
  46.             tags GTSC_Arrows,16
  47.             id      LHSCROLLER=5
  48.             stdline 1
  49.          end
  50.  
  51.       end // VBox
  52.  
  53.       vbox
  54.          hchar 12
  55.  
  56.          cycle
  57.             Labels "--->","<---"
  58.             id   DIR_ID=6
  59.          end
  60.  
  61.          button
  62.             text "Parent"
  63.             textid STR_PARENT=2
  64.             id PARENT_ID=7
  65.          end
  66.  
  67.          button
  68.             text "Get"
  69.             textid STR_GET=3
  70.             id GET_ID=8
  71.          end
  72.  
  73.          button
  74.             vrel 1
  75.             text "Listview"
  76.             id LISTVIEW_ID=9
  77.          end
  78.       end
  79.  
  80.       vbox
  81.          string
  82.             topstdspace 1
  83.             text "Path:"
  84.             textid STR_PATH
  85.             FLAGS PLACETEXT_ABOVE
  86.             id    RPATH=10
  87.             tags GTST_MaxChars,256
  88.          end
  89.          string
  90.             tags GTST_MaxChars,256
  91.             id    RARC=11
  92.          end
  93.  
  94.          hbox
  95.             button
  96.                MinVChar 2
  97.                MinVPix  32
  98.                vrel  1
  99.                id    R_FILE=12
  100.             end
  101.  
  102.             scroller
  103.                tags PGA_Freedom,LORIENT_VERT
  104.                tags GTSC_Arrows,16
  105.                id   RVSCROLLER=13
  106.                hchar 1
  107.                hpix 8
  108.             end
  109.          end
  110.          scroller
  111.             tags PGA_Freedom,LORIENT_HORIZ
  112.             tags GTSC_Arrows,16
  113.             id      RHSCROLLER=14
  114.             stdline 1
  115.          end
  116.  
  117.       end // VBox
  118.    end // HBox
  119.  
  120.    hbox
  121.       stdline 1
  122.       button
  123.          text "Copy"
  124.          textid STR_COPY=4
  125.          id COPY_ID=15
  126.       end
  127.       button
  128.          text "Rename"
  129.          textid STR_RENAME=5
  130.          id RENA_ID=16
  131.       end
  132.       button
  133.          text "Delete"
  134.          textid STR_DELETE=6
  135.          id  DEL_ID=17
  136.       end
  137.       button
  138.          text "Filenote"
  139.          textid STR_FILENOTE=7
  140.          id  NOTE_ID=18
  141.       end
  142.       button
  143.          text "Protect"
  144.          textid STR_PROTECT=8
  145.          id PROT_ID=19
  146.       end
  147.       button
  148.          text "Pack"
  149.          textid STR_PACK=9
  150.          id PACK_ID=20
  151.       end
  152.       button
  153.          text "Options"
  154.          textid STR_OPTIONS=10
  155.          id OPT_ID=21
  156.       end
  157.    end
  158. end
  159.  
  160.  
  161.  
  162.  
  163.